bufio.Writer.n (field)
27 uses
bufio (current package)
bufio.go#L579: n int
bufio.go#L627: b.n = 0
bufio.go#L636: if b.n == 0 {
bufio.go#L639: n, err := b.wr.Write(b.buf[0:b.n])
bufio.go#L640: if n < b.n && err == nil {
bufio.go#L644: if n > 0 && n < b.n {
bufio.go#L645: copy(b.buf[0:b.n-n], b.buf[n:b.n])
bufio.go#L647: b.n -= n
bufio.go#L651: b.n = 0
bufio.go#L656: func (b *Writer) Available() int { return len(b.buf) - b.n }
bufio.go#L663: return b.buf[b.n:][:0]
bufio.go#L667: func (b *Writer) Buffered() int { return b.n }
bufio.go#L681: n = copy(b.buf[b.n:], p)
bufio.go#L682: b.n += n
bufio.go#L691: n := copy(b.buf[b.n:], p)
bufio.go#L692: b.n += n
bufio.go#L705: b.buf[b.n] = c
bufio.go#L706: b.n++
bufio.go#L735: size = utf8.EncodeRune(b.buf[b.n:], r)
bufio.go#L736: b.n += size
bufio.go#L761: n = copy(b.buf[b.n:], s)
bufio.go#L762: b.n += n
bufio.go#L771: n := copy(b.buf[b.n:], s)
bufio.go#L772: b.n += n
bufio.go#L801: m, err = r.Read(b.buf[b.n:])
bufio.go#L810: b.n += m
![]() |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |